From ff843ce876dc916a9c186cdcb270b3b1aa25bc1f Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Mon, 14 Aug 2006 15:26:37 +0100 Subject: [PATCH] [NET] back: Fix an __init that should be an __exit in loopback driver. This was pointed out by the newer build system used in 2.6.18-rc4. Signed-off-by: Jan Beulich --- linux-2.6-xen-sparse/drivers/xen/netback/loopback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-2.6-xen-sparse/drivers/xen/netback/loopback.c b/linux-2.6-xen-sparse/drivers/xen/netback/loopback.c index e4e438b438..391ace8a02 100644 --- a/linux-2.6-xen-sparse/drivers/xen/netback/loopback.c +++ b/linux-2.6-xen-sparse/drivers/xen/netback/loopback.c @@ -218,7 +218,7 @@ static int __init make_loopback(int i) return err; } -static void __init clean_loopback(int i) +static void __exit clean_loopback(int i) { struct net_device *dev1, *dev2; char dev_name[IFNAMSIZ]; -- 2.30.2